SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

Guided Policy Search 環境安裝

Guided Policy Search 環境安裝

大腦開竅

大腦開竅

使用 VSCODE DEBUG 對 VUE + VITE 專案進行偵錯

使用 VSCODE DEBUG 對 VUE + VITE 專案進行偵錯






留言討論